home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Software USA 4 #11
/
Software USA Volume 4.11.iso
/
mac
/
Educational
/
mac06
/
usr
/
include
/
stdarg.h
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1997-11-19
|
256 b
|
14 lines
|
[
TEXT/SPM
]
/* mac06©1997 by HNS/DSITRI hns@computer.org
** stdarg.h
*/
#pragma once
/* valid for PowerPC calling conventions */
#define va_arg(p, type) *(*(type **)&(p))++
#define va_end(p)
#define va_list void *
#define va_start(p, arg) p=(&(arg))+1
/* EOF */